home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / taropyon / silib / inc / scn / imgblk.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-16  |  332 b   |  20 lines

  1. #ifndef    _SCN_IMGBLK_H
  2. #define    _SCN_IMGBLK_H
  3.  
  4. #ifdef    __HIGHC__
  5. #    ifndef _SIZE_T_DEFINED
  6. #        define _SIZE_T_DEFINED
  7. typedef unsigned int size_t;
  8. #    endif
  9. #endif
  10.  
  11. typedef struct
  12. {
  13.     int                pixel;    /* ピクセル */
  14.     size_t            siz;    /* バイト数    */
  15.     int                xs, ys;    /* ドット数    */
  16.     char            *dat;    /* データ    */
  17. } IMGBLK_T;
  18.  
  19. #endif
  20.